home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / Theme5.dxr / Internal_29_go scheda2.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  615 b   |  29 lines

  1. on mouseWithin me
  2.   tmp = the castLibNum of sprite the currentSpriteNum
  3.   tmp = castLib(tmp).name
  4.   if tmp = "pict" then
  5.     cursor(280)
  6.     updateStage()
  7.   end if
  8. end
  9.  
  10. on mouseLeave me
  11.   tmp = the castLibNum of sprite the currentSpriteNum
  12.   tmp = castLib(tmp).name
  13.   if tmp = "pict" then
  14.     cursor(-1)
  15.     updateStage()
  16.   end if
  17. end
  18.  
  19. on mouseUp me
  20.   global gIngrandimento
  21.   tmp = the castLibNum of sprite the currentSpriteNum
  22.   tmp = castLib(tmp).name
  23.   if tmp = "pict" then
  24.     tmp = the memberNum of sprite the currentSpriteNum
  25.     gIngrandimento = member(tmp, "pict").name
  26.     go("ingrandimento")
  27.   end if
  28. end
  29.